home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Startmenu Context Menu.xpl < prev    next >
Text File  |  2002-03-18  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Appearance\Start menu\Common"
  5. "UIPATH 2"="Appearance\Taskbar"
  6. "NAME"="Context Menu for Start/Taskbar/Tray"
  7. "VERSION"="1.01"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Show context menu for Start button, Taskbar and Tray"
  10. "DESCRIPTION 1"="If this setting is enabled, a context menu will appear when you click on the Start button, the taskbar or inside the tray area with the right mouse button."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com/"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15.  
  16.  
  17. sV_StartButtonContext="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoTrayContextMenu"  
  18.  
  19.  
  20. 'Called when the Plugin is started
  21. SUB Plugin_Initialize
  22.  i=RegReadValue(sV_StartButtonContext) 'Str!
  23.  if i=0 or IsEmpty(i) then 
  24.     SetUIElement 1,true 
  25.  end if
  26.  
  27. END SUB
  28.  
  29.  
  30. 'Called when the Plugin should apply the changes
  31. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.     if RegValueExists(sV_StartButtonContext) then Call RegDeleteValue(sV_StartButtonContext)
  35.  else
  36.     Call RegWriteValue(sV_StartButtonContext,1,2)
  37.  end if
  38.  
  39.  
  40.  Call Logoff
  41. END SUB
  42.  
  43. 'Called when the Plugin is about to be removed from memory
  44. SUB Plugin_Terminate
  45. END SUB
  46.